![]() |
|
---|---|
Developer(s) | Microsoft Corporation |
Initial release | April 2007 |
Written in | Combination of C++ and C# |
Operating system | cross-platform (Microsoft Windows, Linux[1], Mac OS X, Symbian OS[2]) |
Type | Web Application framework |
License | MS-EULA, with MS-PL components |
Website | Microsoft Silverlight silverlight.net |
Microsoft Silverlight is a web application framework that integrates multimedia, computer graphics, animation and interactivity into a single runtime environment. Initially released as a video streaming plugin, later versions brought additional interactivity features and support for CLI languages and development tools. The current version 4 was released in April 2010.[3] Features of Silverlight are similar to those in Adobe Flash.
It is compatible with multiple web browsers used on Microsoft Windows and Mac OS X operating systems. Mobile devices, starting with Windows Phone 7 and Symbian (Series 60) phones, are likely to become supported in 2010.[4][5] A free software implementation named Moonlight, developed by Novell in cooperation with Microsoft, is available to bring most Silverlight functionality to Linux, FreeBSD and other open source platforms.
Contents |
Silverlight provides a retained mode graphics system similar to Windows Presentation Foundation, and integrates multimedia, graphics, animations and interactivity into a single runtime environment. In Silverlight applications, user interfaces are declared in Extensible Application Markup Language (XAML) and programmed using a subset of the .NET Framework. XAML can be used for marking up the vector graphics and animations. Silverlight can also be used to create Windows Sidebar gadgets for Windows Vista.[6]
Silverlight supports Windows Media Video (WMV), Windows Media Audio (WMA) and MPEG Layer III (MP3) media content[7] across all supported browsers without requiring Windows Media Player, the Windows Media Player ActiveX control or Windows Media browser plugins. Because Windows Media Video 9 is an implementation of the Society of Motion Picture and Television Engineers (SMPTE) VC-1 standard, Silverlight also supports VC-1 video, though still only in an Advanced Systems Format (ASF) container format. Furthermore, the Software license agreement says VC-1 is only licensed for the "personal and non-commercial use of a consumer".[8] Silverlight, since version 3, supports the playback of H.264 video.[9] Silverlight makes it possible to dynamically load Extensible Markup Language (XML) content that can be manipulated through a Document Object Model (DOM) interface, a technique that is consistent with conventional Ajax techniques. Silverlight exposes a Downloader object which can be used to download content, like scripts, media assets or other data, as may be required by the application.[10] With version 2, the programming logic can be written in any .NET language, including some derivatives of common dynamic programming languages like IronRuby and IronPython.[11]
Silverlight 1.0, which was developed under the codename Windows Presentation Foundation/Everywhere (WPF/E) and released in 2007, consists of the core presentation framework, which is responsible for the user interface (UI), interactivity and user input, basic UI controls, graphics and animation, media playback, Digital rights management (DRM), and DOM integration.[12] It is made up of the following components:
A Silverlight application starts by invoking the Silverlight control from the Hyper Text Markup Language (HTML) page, which then loads up a XAML file. The XAML file contains a Canvas object, which acts as placeholder for other elements. Silverlight provides various geometrical primitives like lines, ellipses and other shapes, to elements like text, images, and media, etc. The elements are properly positioned to achieve the desired layout. Any arbitrary shape can be created as well. These elements can be animated using Event triggers; some animation effects are predefined, others can be created as composite of the pre-defined effects. Events like keyboard or mouse movements can also raise Events which can be handled by custom scripts.[13]
Programmatic manipulation of the UI is achieved by using scripting languages to modify the Document Object Model of the Silverlight Canvas object.[12] To facilitate this, Silverlight exposes a DOM application programming interface (API), accessible from any scripting language supported by Silverlight, which in version 1.0 release is limited to JavaScript running in the browser. However, there are no UI widgets built in. The native widgets of the browser must be overlaid on top of the Silverlight Canvas for user input. Support for data formats is limited to XML and JavaScript Object Notation (JSON) only.[12]
Silverlight 2 (previously referred to as version 1.1)[14] includes a version of the .NET Framework, implementing the same full Common Language Runtime (CLR) version as .NET Framework 3.0; so it can execute programs written in any .NET language. (By default, however, you cannot reference assemblies compiled with the regular .NET Framework.) Unlike the CLR included with .NET Framework version 3.5 and earlier, but like .NET Framework 4.0, multiple instances of the CoreCLR included in Silverlight can be hosted in one process.[15] With this, the XAML layout markup file (.xaml file) can be augmented by code-behind code, written in any .NET language, which contains the programming logic. It can be used to programmatically manipulate both the Silverlight application and the HTML page which hosts the Silverlight control. The XAML markup, as well as the code, is compiled into .NET assemblies which are then compressed using ZIP and stored in a .xap
file.[16]
Silverlight ships with a lightweight class library which includes features such as extensible controls, XML Web Services, networking components and Language Integrated Query (LINQ) APIs. This class library is a subset of, and is considerably smaller than, .NET Framework's Base Class Library (BCL). Silverlight code runs in a sandbox, thus preventing the invocation of platform APIs.[17]
The version of .NET Framework in Silverlight adds[12] a subset of Windows Presentation Foundation (WPF) UI-programming model, including support for shapes, documents, media and animation objects of WPF. Beta 2 onwards,[18] it ships with more than 30 UI controls[19] (including TextBox
, CheckBox
, Slider
, ScrollViewer
, and Calendar
controls),[20] for two-way databinding support, automated layout management (by means of StackPanel
, Grid
, etc.)[20] as well as data-manipulation controls, such as DataGrid[14][21] and ListBox.[20] UI controls are skinnable using a template-based approach.[20] Third-party libraries of expanded UI-control sets are also available.[22]
The included BCL provides classes for collections, reflection, regular expressions, string handling and data access. It also supports LINQ, with full support for LINQ to Objects and expression trees. Almost all of the System.Linq and System.Linq.Expression namespaces are exposed. It also supports serialization of objects, for data persistence. Silverlight can handle data in Really Simple Syndication (RSS) or JSON format, in addition to XML. The BCL provides enhanced support for working with XML data, including the XMLReader and XMLWriter classes. Silverlight 2 also supports asynchronous programming via the use of the threading libraries.[21]
Silverlight also includes classes for data access over XML-based Web services, Representational State Transfer (REST), Windows Communication Foundation (WCF) Services and ADO.NET Data Services.[18] The networking support in Silverlight can be used by Silverlight applications to communicate using Hypertext Transfer Protocol (HTTP), or at the lower socket level. Cross-domain communication is supported.[19] Silverlight uses an XML-based configuration file to control the cross-domain resource-access policy, for both HTTP and socket connections. It can be used by site administrators to control which resources a Silverlight application can access, when that application did not originate in the domain of the site. In addition, Silverlight also supports the Adobe Flash Cross-domain policy file format.[23] Silverlight sockets can only initiate a connection; they cannot listen for connections.[24]
Silverlight 2 includes[18] the Dynamic Language Runtime (DLR) which allows dynamic compilation and execution of dynamic (scripting) languages. Compilers for the languages based on the DLR (including IronPython and IronRuby) are [to be?] packaged with the Dynamic Languages application in the .xap
package.[25] The Dynamic Languages software development kit (SDK) includes a web server named Chiron, that can dynamically package all the dependencies for the Dynamic Languages application and serve it to the browser.[25] The first upcoming languages written for the DLR are Managed JScript, IronPython 2.0, and IronRuby. Microsoft also plans to build Visual Basic .NET 10.0 (VBx) on the DLR. All four languages share the same infrastructure, to allow Silverlight to compile and execute the language source. Conversely, other .NET languages must be compiled ahead-of-time and delivered to Silverlight as .NET assemblies. The implementation of Managed JScript conforms to the ECMAScript 3.0 specification, and Microsoft asserts that it is 250 times faster than interpreted JScript.[21]
With the integration of .NET Framework, Silverlight also allows HTML-managed code interaction, which enables the manipulation of HTML DOM elements from managed code,[12] and permits JavaScript code to call managed code and use objects instantiated by managed code. Silverlight encloses JavaScript objects and DOM elements in managed wrappers to make them available from managed code.[26] While there is no provision for calling JavaScript code directly in the 1.1 alpha release, managed-code events can fire JavaScript handlers. A Silverlight instance does not need to have a UI component in order to manipulate the HTML DOM from managed code.[27] It is done by creating a XAML Canvas with both width and height set to zero, and using its code-behind code to modify the Document Object Model of the HTML page via the APIs in the System.Browser namespace.[28]
Silverlight 2 includes Deep Zoom, a technology derived from Microsoft Live Labs Seadragon. It allows users to zoom into, or out of, an image (or a collage of images), with smooth transitions, using the mouse wheel.[29] The images can scale from 2 or 3 megapixels in resolution into the gigapixel range, but the user need not wait for it to be downloaded entirely; rather, Silverlight downloads only the parts in view, optimized for the zoom level being viewed.[30] Beta 2 onwards, Deep Zoom uses an XML-based file format.[18]
Media features in Silverlight 2 include:[31]
The Media Stream Source is the API responsible for enabling adaptive streaming of media. Adaptive streaming allows the player application to choose the bit rate of the media based on available client bandwidth and central processing unit (CPU) resources.[18] Media Stream Source allows the developer to specify a custom method of retrieving media data, the only requirement being that the final video and audio streams be presented to Silverlight runtime in a format that Silverlight can decode (VC-1, H.264, WMA, MP3, etc.). This allows extensible support for otherwise natively unsupported file formats (i.e. MP4, Matroska, Ogg), protocols (i.e. Shoutcast) and delivery methods (i.e. adaptive streaming, peer-to-peer (P2P)). Microsoft first publicly showcased Media Stream Source by powering the NBC Olympics website with their own implementation of adaptive streaming.[32]
Silverlight 2 also allows limited filesystem access to Silverlight applications.[26] It can use the operating system's native file dialog box to browse to any file (to which the user has access). The file is sanitized of path information, to prevent the application from getting access to information such as user name, and can be opened only in read-only mode. For local storage of data, Silverlight provides isolated local storage (isostorage),[26] namely, outside the browser cache, in a folder hidden inside the private user-profile folder. It is set to 1 MB per URL by default,[26] but this can be changed by the user.[18] Data stored by a Silverlight application in the isostorage is identified by the URL from which it loads, and can be accessed by that application only. All instances of Silverlight share the same isostorage, so all instances of the same Silverlight application can share the saved data, even if they are running on different browsers.
Silverlight CoreCLR uses an attribute-based security model, as opposed to the Code Access Security (CAS) model of the desktop version of .NET Framework.[33] Assemblies are marked with a security attribute, which can be transparent (SecurityTransparentAttribute), safecritical (SecuritySafeCriticalAttribute) or critical (SecurityCriticalAttribute). Methods in transparent assemblies run with partial trust, and codes within such assemblies cannot call critical methods (methods which can cause system-wide changes); neither can transparent assemblies contain unverifiable code (use the unsafe C# keyword or use pointers) or invoke system functions by means of P/Invoke. Code in both critical and safecritical assemblies run with full trust, and are therefore not subject to such limitations. However, a transparent method can call a safecritical method, and a safecritical method can call a critical method. In such a case, the safecritical method will verify that the call is both safe and within the limited rights of the caller; if so, then the safecritical method will proxy the call to the requested critical method. In fact, the IsoStorage APIs are exposed as safecritical methods.[33] An assembly whose security attribute is unset is run as a transparent method. Analogous limitations also apply to type-inheritance; namely, in the cases of virtual-method calls and interface-method calls.[34] Silverlight assemblies can contain members that are not usable by CoreCLR, as long as they can be processed by the .NET Framework CLR; such methods will not be loaded when the assembly is being executed by CoreCLR.[35]
However, only platform code is allowed to be marked as critical or safecritical. The Silverlight runtime ensures that platform assemblies are loaded only from the Silverlight installation directory, and are digitally signed by Microsoft. This effectively means that user-application assemblies can only be transparent code (run under partial trust and limited rights).[36] Platform code can be marked with either attribute. The BCL methods of the .NET Framework, which have the Internet attribute set, allowing them to be called from untrusted code originating from Internet, are exposed in Silverlight BCL as transparent methods.[36]
Silverlight 3 was announced at the International Broadcasting Convention (IBC) 2008 show in Amsterdam on September 12, 2008. It was unveiled at MIX09 in Las Vegas on March 18, 2009. A beta version was made available for download the same day. The final version was released July 9, 2009.
Silverlight 3 includes an increased number of controls[37]—including but not limited to DataGrid, TreeView, various layout panels, DataForm for forms-driven applications and DataPager for viewing paginated data. Some of these controls are from the Silverlight Toolkit. In addition, Silverlight 3 includes a navigation framework to let Silverlight applications use the hyperlinked navigation model as well as enabling deep-linking (linking directly to specific pages) within Silverlight applications.[37]
On the media front, Silverlight 3 supports Advanced Audio Coding (AAC) audio decoding as well as hardware-accelerated H.264 video decoding.[37] Silverlight 3 also offers 1080p smooth streaming.[38][39] The native multimedia pipeline is also programmatically exposed, so that other formats can also be supported by third-parties using managed code decoders.[37] Silverlight 3 supports perspective 3D[37] which enables 3D transformations of 2D elements.[40] These transformations, as well as many 2D operations like stretches, alpha blending etc. are hardware accelerated.[40] Custom animations, including transforms and blends, can be created on Silverlight elements using High Level Shader Language (HLSL) to make use of pixel shaders.[40] A bitmap API is provided to let Silverlight 3 applications manipulate bitmaps.[40] Silverlight now uses the graphics processing unit (GPU) to accelerate the composition of Visual Trees (like WPF, Silverlight elements correspond to Visual elements, which, when coupled with the layout information, forms a Composition Tree or Visual Tree which is then rendered to form the final display; see WPF architecture).[37] Visual trees can now be cached;[37] this increases performance in cases like transforms, which creates lots of throw-away intermediate states, by not making the state transitions on the main Visual tree. Silverlight 3 now also supports ClearType text rendering.
UI elements in Silverlight 3 supports element-to-element binding—which allows one element to be bound to the state of another element,[40] as well as a validation mechanism for data binding.[37] Unlike Silverlight 2, which allowed the applications to save files only to the local isostorage, Silverlight 3 applications can save to any location on the file system via the system Save File dialog. However, the path where the file is saved will still be hidden from the Silverlight application.[37] Any external assemblies used by Silverlight applications are cached too so that they need not be redownloaded for subsequent instantiations of the application.[37]
Silverlight 3 also includes a LocalConnection API to communicate (using a named pipe style model) among multiple running applications on the same machine, irrespective of the browser [37][40] and can monitor for network connectivity events.[37] Silverlight 3 can optionally use Binary XML to communicate with WCF services.[37]
Silverlight 3 supports Out-of-Browser experiences, i.e., Silverlight applications can be installed to the system for offline access (provided the application manifest is designed to allow local installation) where they run outside the browser. They are launched using the Start Menu or desktop shortcuts, and run without the browser window.[37] Applications can check whether they are running inside a browser or not.[41] When running outside of a browser, HTML interop is disabled. In addition, access to the Function Keys is enabled.[42] Locally installed Silverlight applications still run in a sandbox.[42]
Installed Silverlight 3 applications automatically check for updates asynchronously on every launch and updates are automatically installed.[43] Running instances of the applications are informed when updates are available.[41]
Silverlight 3 is now listed as a requirement for eFiling income tax returns for free in the US.[44]
On November 18, 2009, at the Professional Developers Conference in Los Angeles, Microsoft Corp. unveiled a Beta version of Silverlight 4.[45] The final version was released on April 15, 2010 (along with Silverlight 4 tools for developers). An update to Silverlight (4.0.50524.0) was released on 3rd June 2010. New features in Silverlight 4 include:
Additionally, the following features are provided to out-of-browser (locally installed) Silverlight applications that have been explicitly granted "trusted" status:
Version name | Version number | Release date |
---|---|---|
1.0 Community Technology Preview (CTP) | 1.0.? | 2006–12 |
1.0 Release to Web (RTW) | 1.0.20816 | 2007-09-05 |
2 Pre-Release (As 1.1 Alpha Refresh) |
1.1.20926.0 | 2007-09-05 |
1.0 Service release | 1.0.21115.0 | 2007-11-20 |
1.0 Service release | 1.0.30109.0 | 2008-01-15 |
2 Beta 1[47] | 2.0.30226.2 | 2008-03-05 |
1.0 Service release[48] | 1.0.30401.0 | 2008-04-08 |
2 Beta 2 | 2.0.30523.6 | 2008-06-06[49] |
2.0.30523.8 | 2008-07-16 | |
1.0 Service release | 1.0.30715.0 | 2008-07-27 |
2 Release Candidate Zero (RC0) | 2.0.30523.9 | 2008-09-25 |
2 RTW[50] | 2.0.31005.0 | 2008-10-14[51] |
2 General Distribution Release (GDR) 1 | 2.0.40115.0 | 2009-02-19 |
3 Beta | 3.0.40307.0 | 2009-03-18 |
3 RTW | 3.0.40624.0 | 2009-07-09 |
3 GDR 1 | 3.0.40723.0 | 2009-07-28 |
3 GDR 2 | 3.0.40818.0 | 2009-09-01 |
4 Beta 1 | 4.0.41108.0 | 2009-11-18 |
3 GDR 3 | 3.0.50106.0 | 2010-01-20 |
4 RC | 4.0.50303.0 | 2010-03-15 |
4 RTW | 4.0.50401.0 | 2010-04-15[52] |
4 GDR 1 | 4.0.50524.0 | 2010-06-03 |
3 Security Update | 3.0.50611.0 | 2010-08-10 |
The following table presents an availability and compatibility matrix of Silverlight versions for various operating systems and web browsers.
OS/browser | IE 6 SP1 | IE 6 SV1 (SP2) | IE 7/IE 8 | Firefox 3 | SeaMonkey | Safari | Opera | Google Chrome | skyfire |
---|---|---|---|---|---|---|---|---|---|
Windows Vista/Windows 7 | N/A | N/A | 1.0, 2.0, 3.0, 4.0 | 1.0, 2.0, 3.0, 4.0 | 1.0, 2.0 | 1.0, 2.0; via NPAPI | Unofficially[53][54] | 2.0, 3.0, 4.0 | |
Windows Server 2008 R2 | N/A | N/A | 1.0, 2.0, 3.0, 4.0 (IE8 Only) |
N/A | 1.0, 2.0 | 1.0, 2.0; via NPAPI | Unofficially[53][54] | 2.0, 3.0, 4.0 | |
Windows Server 2008 | N/A | N/A | 1.0, 2.0, 3.0, 4.0 | 1.0, 2.0, 3.0, 4.0 | 1.0, 2.0 | 1.0, 2.0; via NPAPI | Unofficially[53][54] | 2.0, 3.0, 4.0 | |
Windows XP/2003/Home Server | 1.0, 2.0, 3.0, 4.0 | 1.0, 2.0, 3.0, 4.0 | 1.0, 2.0, 3.0, 4.0 | 1.0, 2.0, 3.0, 4.0 | 2.0 Unofficially | 1.0, 2.0; via NPAPI | Unofficially[53][54] | 2.0, 3.0, 4.0 | |
Windows 2000 (KB891861 required) | 2.0, 3.0, 4.0 | N/A | N/A | 2.0 Unofficially[55] | N/A | 2.0; via NPAPI | Planned[53] | N/A | |
Windows Phone 7 | N/A | N/A | Planned [56] | N/A | N/A | N/A | N/A | N/A | |
S60 | Planned | N/A | N/A | N/A | N/A | N/A | N/A | N/A | 1.5.0.15495 |
FreeBSD | N/A | N/A | N/A | 2.0 | N/A | N/A | N/A | N/A | |
Linux | N/A | N/A | N/A | N/A | N/A | N/A | N/A | N/A | |
Mac OS 10.4/10.5 PowerPC | N/A | N/A | N/A | 1.0 | N/A | 1.0 | Planned[53] | N/A | |
Mac OS 10.4/10.5 Intel | N/A | N/A | N/A | 1.0, 2.0, 3.0, 4.0 | N/A | 1.0, 2.0, 3.0, 4.0 | Planned[53] | 3.0, 4.0 Unofficially |
Silverlight applications can be written in any .NET programming language. As such, any development tools which can be used with .NET languages can work with Silverlight, provided they can target the Silverlight CoreCLR for hosting the application, instead of the .NET Framework CLR. Microsoft has positioned Microsoft Expression Blend versions 2 and 2 SP1 for designing the UI of Silverlight 1.0 and 2 applications respectively. Visual Studio 2008 can be used to develop and debug Silverlight applications. To create Silverlight projects and let the compiler target CoreCLR, Visual Studio 2008 requires the Silverlight Tools for Visual Studio.[67]
A Silverlight control is a ZIP format file with extension .XAP containing a list of one or more .NET managed assemblies (.DLL files) along with the AppManifest.XAML file containing this list along with the entry point (class and assembly). It can be hosted in any HTML file using an object tag, for example: <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%"><param name="source" value="MySilverLightControl.xap"/></object>
A Silverlight project contains the Silverlight.js and CreateSilverlight.js files which initializes the Silverlight plugin for use in HTML pages, a XAML file for the UI, and code-behind files for the application code. Silverlight applications are debugged in a manner similar to ASP.NET applications. Visual Studio's CLR Remote Cross Platform Debugging feature can be used to debug Silverlight applications running on a different platform as well.[68]
In conjunction with the release of Silverlight 2, Eclipse was added as a development tool option.[69]
An April, 2007 PC World report suggested that Microsoft intended to release certain parts of Silverlight source code as open source software,[70] but a week later Sam Ramji, director of platform technology strategy at Microsoft, contradicted the rumors by confirming that the company had no plans to open Silverlight.[71] Some controls that ship with Silverlight are available under the Microsoft Public License as a part of a separate project known as the Silverlight Toolkit.[72]
Silverlight's proprietary nature is a concern to competition since it may harm the open nature of the World Wide Web. Advocates of free software are also concerned Silverlight could be another example of Microsoft's embrace, extend and extinguish strategy. Both Microsoft Silverlight and Adobe Flash are proprietary.[73][74] Flash's file formats are publicly documented standards,[75][76] as are Silverlight's [77][78]. However, the communication between a Flash player and a server is done by the proprietary protocol RTMP. Both Flash and Silverlight use patent-encumbered audio and video codecs.
The Mono team is currently developing Moonlight, a free and open-source implementation of both the Silverlight 1.0 and 2 runtimes[79].
The project is officially supported by Microsoft who,[58] under an agreement with Novell, has made additional specifications, access to the Silverlight Base Class Library APIs, binary codecs and test cases available to the Mono team,[59] none of which are available to other members of the public.[80]
The "covenant" under which Novell has been granted this exclusive access also specifies conditions that are incompatible with the licensing that covers most other free and open source software. As examples, it specifically requires that the software must have been "obtained directly from Novell or through an Intermediate Recipient" and that it must be "not licensed under GPLv3 [the GNU General Public License version 3] or a Similar License".[60] Some free software proponents, Groklaw, have criticized the covenant,[81] but many open source developers, including Linus Torvalds, have been critical of the GPLv3 license and prefer alternatives.[82] Novell, Inc. is enthusiastic about adding Silverlight to Linux.[83]
Silverlight has received criticism for not living up to its cross-platform operating system compatibility promises, especially on Linux systems compared to its extensive support on Apple and Microsoft desktops for Internet Explorer, Firefox, and Chrome. Even though Microsoft is officially collaborating on the Moonlight project, Bruce Chizen, who was CEO of Adobe Systems at the time, which sells the competing proprietary Flash platform, questioned "the commitment of Microsoft to keep the Silverlight platform compatible with other OS besides Windows".[84] His concerns are based on "examples from history" where, he argues, Microsoft has launched products with promises of ongoing cross-platform compatibility that no longer apply, for example Internet Explorer for UNIX and Windows Media Player for Mac.
California and several other U.S. states also have asked a District Judge to extend most of Microsoft's antitrust case settlement for another five years,[85] citing "a number of concerns, including the fear that Microsoft could use the next version of Windows to 'tilt the playing field' toward Silverlight, its new Adobe Flash competitor," says a Seattle Post-Intelligencer article. The final judgment on the motion extended the settlement two years, to November 2009, but for reasons unrelated to Silverlight.[86] In Windows 7 the Silverlight Web browser plugin is not installed automatically, but is a downloadable optional update through Windows update.[87]
Microsoft has been criticized for not using the Scalable Vector Graphics (SVG) standard for Silverlight, which, according to Ryan Paul of Ars Technica, is consistent with Microsoft's ignoring of open standards in other products, as well.[88] However, according to David Betz, a .NET specialist and Microsoft Most Valuable Professional (MVP), while it "seems to some to be a valid criticism and a good point to some of the web standards world, it is absolutely groundless and carries no weight." Microsoft would have had to alter the SVG specification in order to integrate it with .NET. Consequently, he thinks the "choice by Microsoft to use XAML over SVG, served to retain the SVG standard by not adding proprietary technology [to SVG]".[89]
Silverlight uses the ZIP file format as the container format for Silverlight apps (see above), and the files contained within a Silverlight applet can therefore be accessed by any standard ZIP reader. Silverlight content is designed and stored in the human-readable XAML format, which is based on XML, the text-based standard that derives from the same markup language as HTML. All text defined in an XAML file, such as paragraphs of text or button captions, is in standard Unicode format, and can be parsed as plain text by an XML reader or a generalized text parsing utility. Therefore, any ZIP-aware search engine capable of parsing XML or arbitrarily decorated plaintext is capable of processing Silverlight content. However, as with any site, including JavaScript-driven sites, content that is generated by code may not be accessible for SEO.
Silverlight's ZIP and XML standards-based accessibility starkly contrasts with that of Flash, which uses specialized non-standardized formats for which specifications are only available from the vendor (Adobe), and where search engines such as Google are dependent on proprietary technologies to interact with Flash content.[90]
HSN Transforms Shopping on the Web by Integrating Silverlight Live and VOD Programming http://www.microsoft.com/casestudies/Case_Study_Detail.aspx?casestudyid=4000007639
|
|
|